home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / statusPrint.c < prev    next >
C/C++ Source or Header  |  1989-10-24  |  2KB  |  57 lines

  1. /*
  2.  * statusPrint.c --
  3.  *
  4.  *     Prints the message associated with a status value in 
  5.  *    the status.h file.
  6.  *
  7.  * Copyright 1986 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/statusPrint.c,v 1.1 89/10/24 12:27:04 jhh Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21. #include <sprite.h>
  22. #include <status.h>
  23. #include <stdio.h>
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Stat_PrintMsg --
  29.  *
  30.  *    Output an error message.
  31.  *
  32.  * Results:
  33.  *    None.
  34.  *
  35.  * Side effects:
  36.  *    A message gets printed on standard error, of the form
  37.  *    "string: message", where "string" is the argument to this
  38.  *    procedure and "message" is the standard error message
  39.  *    associated with "status".
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. void
  45. Stat_PrintMsg(status, string)
  46.     ReturnStatus status;        /* Error status. */
  47.     char *string;            /* Identifying string to output before
  48.                      * the error message string. */
  49. {
  50.     if (string == NULL) {
  51.     fprintf(stderr, "%s\n", Stat_GetMsg(status));
  52.     } else {
  53.     fprintf(stderr, "%s: %s\n", string, Stat_GetMsg(status));
  54.     }
  55. }
  56.  
  57.